More about insert statement

I’ve wandered in some forums I’ve found another way to insert multiple data. before INSERT INTO TableName (Col1, Col2) VALUES (1, ‘John’); INSERT INTO TableName (Col1, Col2) VALUES (2, ‘Mike’); INSERT INTO TableName (Col1, Col2) VALUES (3, ‘Jane’); another way I found INSERT INTO TableName (Col1, Col2) SELECT 1 , ‘John’ UNION ALL SELECT 2 … Continue reading More about insert statement